home *** CD-ROM | disk | FTP | other *** search
/ MacWorld: Complete Mac Interactive / Macworld Complete Mac Interactive CD)(1994).iso / Software / Graphsoft / Arch Demo / Core.sit / MiniCad 5 Demo.rsrc / STR#_7021.txt < prev    next >
Encoding:
Text File  |  1994-04-15  |  2.6 KB  |  89 lines

  1. Offsets object connected to h specified distance from current position.
  2.  
  3. HMove(h : HANDLE; XOff,YOff : REAL);
  4.  
  5. Changes the text of a text object that is connected to h.
  6.  
  7. SetText(h : Handle; s : STRING);
  8.  
  9. Activates the spreadsheet that is connected by h.
  10.  
  11. SelectSS(h : Handle);
  12.  
  13. Moves a 3D object connected to h by dX, dY, dZ.
  14.  
  15. Move3DObj(h : Handle;  dX, dY, dZ : REAL);
  16.  
  17. Changes the height, width, depth of a 3D object that is connected to h.
  18.  
  19. Set3DInfo(h : Handle;  height, width, depth : REAL);
  20.  
  21. Rotates a 3D object that is connected to h by the amount specified by #x, #y, #z around the point specified by xCenter, yCenter, zCenter.
  22.  
  23. Set3DRot(h : Handle;  #x, #y, #z, xCenter, yCenter, zCenter : REAL);
  24.  
  25. Changes the start and arc angles of the arc that is connected to h.
  26.  
  27. SetArc(h : Handle;  #startAngle, #arcAngle : REAL);
  28.  
  29. Changes the location of the polygon‚Äôs index‚Äôth vertex to the new location specified by x, y.
  30.  
  31. SetPolyPt(h : Handle; index : INTEGER;  x, y : REAL);
  32.  
  33. Changes the second end point of a line connected to h to the new location specified by x, y.
  34.  
  35. SetSegPt2(h : Handle; x, y : REAL);
  36.  
  37. Changes the first end point of a line connected to h to the new location specified by x, y.
  38.  
  39. SetSegPt1(h : Handle; x, y : REAL);
  40.  
  41. Assigns the specified fill background color to the object that is connected to h.
  42.  
  43. SetFillBack(h : Handle; red, green, blue : LONGINT);
  44.  
  45. Assigns the specified fill foreground color to the object that is connected to h.
  46.  
  47. SetFillFore(h : Handle; red, green, blue : LONGINT);
  48.  
  49. Assigns the specified pen background color to the object that is connected to h.
  50.  
  51. SetPenBack(h : Handle; red, green, blue : LONGINT);
  52.  
  53. Assigns the specified pen foreground color to the object that is connected to h.
  54.  
  55. SetPenFore(h : Handle; red, green, blue : LONGINT);
  56.  
  57. Assigns the specified bounding box coordinates x1, y1, x2, y2 to the object that is connected to h.
  58.  
  59. SetBBox(h : Handle; x1, y1, x2, y2 : REAL);
  60.  
  61. Assigns the specified line style to the object that is connected to h.
  62.  
  63. SetLS(h : Handle; lineStyle : INTEGER);
  64.  
  65. Assigns the specified line weight to the object that is connected to h.
  66.  
  67. SetLW(h : Handle;  lineWeight : INTEGER);
  68.  
  69. Assigns the specified fill pattern to the object that is connected to h.
  70.  
  71. SetFPat(h : Handle; fillPattern : INTEGER);
  72.  
  73. Assigns the specified class to the object that is connected to h.
  74.  
  75. SetClass(h : Handle; class : STRING);
  76.  
  77. Assigns the specified name to the object that is connected to h.
  78.  
  79. SetName(h : Handle; name : STRING);
  80.  
  81. Deselects the object that is connected to h.
  82.  
  83. SetDSelect(h : Handle);
  84.  
  85. Selects the object that is connected to h.
  86.  
  87. SetSelect(h : Handle);
  88.  
  89.